home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000359_news@newsmaster….columbia.edu _Thu Sep 18 10:19:51 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA16389
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 18 Sep 1997 10:19:50 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA15521
  7.     for kermit.misc@watsun; Thu, 18 Sep 1997 10:19:50 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Scripts and phone lists
  12. Date: 18 Sep 1997 14:19:48 GMT
  13. Organization: Columbia University
  14. Lines: 27
  15. Message-ID: <5vrda4$o71$1@apakabar.cc.columbia.edu>
  16. References: <874527910snz@dendarii.demon.co.uk>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7682
  19.  
  20. In article <874527910snz@dendarii.demon.co.uk>,
  21. Michael Bernardi <mike@dendarii.demon.co.uk> wrote:
  22. : In MS-Kermit the is a dialup list of phone numbers, accessible via the
  23. : list command. This allows a "dial service" rather than "dial 555-555".
  24. : However once a connection has been made, there doesn't seem to be any way
  25. : to continue automatically. ie "dial work" dials my work number THEN
  26. : automatically logs me in to the service.
  27. C-Kermit embodies the notion of a "services directory" that does what you
  28. want.  It is done completely by scripts.  It relies on certain features that
  29. C-Kermit has that MS-DOS Kermit 3.14 and earlier did not have, such as
  30. arrays.  But MS-DOS Kermit 3.15 adds many of these features:
  31.  
  32.   http://www.columbia.edu/kermit/test/bin/msk315.zip
  33.  
  34. and so it should be fairly easy, or at least possible, to adapt C-Kermit's
  35. services directory to MS-DOS Kermit.  Everything you need is in the standard
  36. ckermit.ini file:
  37.  
  38.   http://www.columbia.edu/kermit/f/ckermit.ini
  39.  
  40. You can find a detailed explanation in "Using C-Kermit", 2nd Edition:
  41.  
  42.   http://www.columbia.edu/kermit/ck60manual.html
  43.  
  44. - Frank